-
Notifications
You must be signed in to change notification settings - Fork 671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update k8s Dependencies #4199
Update k8s Dependencies #4199
Conversation
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #4199 +/- ##
==========================================
+ Coverage 59.31% 59.89% +0.58%
==========================================
Files 623 562 -61
Lines 53394 40224 -13170
==========================================
- Hits 31669 24092 -7577
+ Misses 19204 13789 -5415
+ Partials 2521 2343 -178
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
Signed-off-by: Haytham Abuelfutuh <[email protected]>
.github/workflows/codespell.yml
Outdated
@@ -17,7 +17,7 @@ permissions: | |||
jobs: | |||
codespell: | |||
name: Check for spelling errors | |||
runs-on: ubuntu-latest | |||
runs-on: union-k8s-runner |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
qq: will this GA workflows run on our cluster? If so, should we only run unit and integration test on our cluster? That said, we can use github action to run some other small workflow, such as check for spelling errors, lint, make generate, and push image.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rethinking this, Union cluster need to have machines with bigger attached disks, the default ones run out of capacity really quickly and can't even run the unit tests... I'll revert this change and think about this separately.
Signed-off-by: Haytham Abuelfutuh <[email protected]>
I'm reverting this temporarily just to get 1.10 out. The reason being that I don't want to ship these changes without (a lot) more testing. |
This reverts commit 8749fce.
@@ -162,7 +162,7 @@ func (g *GarbageCollector) StartGC(ctx context.Context) error { | |||
logger.Warningf(ctx, "Garbage collector is disabled, as ttl [%d] is <=0", g.ttlHours) | |||
return nil | |||
} | |||
ticker := g.clk.NewTicker(g.interval) | |||
ticker := g.clk.NewTimer(g.interval) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please could you explain why was this changed from a ticker to a timer? I'm a total golang noob but I think this means that flytepropeller will only garbage collect once each time it restarts.
I think this is causing us some problems https://flyte-org.slack.com/archives/CP2HDHKE1/p1701118219768919?thread_ts=1700590318.336129&cid=CP2HDHKE1
Describe your changes
Check all the applicable boxes